home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / cgraphix / catxt.c < prev    next >
Text File  |  1986-05-28  |  1KB  |  43 lines

  1. /* «RM120»«PL99999»«TS4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76» */
  2. #include    <stdio.h>
  3. #define    EXTERN    extern
  4. #include    <typedef.h>
  5.  
  6.  
  7. main()
  8. {
  9.     int i;
  10.     double    MaxWorldX = 1000., MaxWorldY = 1000.;
  11.     char    chararray[26];
  12.     char    str[2];
  13.  
  14.     for (i = 0; i < 26 ; i++)
  15.         chararray[i] = 'A' + i;
  16.     str[1] = '\0';
  17.  
  18.     InitGraphic();                /* init the system and screen    */
  19.     DefineWorld(1, 0., 0., 1000., 1000.);
  20.     SelectWorld(1);
  21.     SelectWindow(1);
  22.     DrawBorder();
  23.  
  24.     SetAspect((double)1.);
  25.  
  26.     DrawTextW((double)15., (double)50., 1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
  27.     DrawTextW((double)15., (double)100., 1, "abcdefghijklmnopqrstuvwxyz");
  28.     DrawTextW((double)15., (double)150., 1, "1234567890-=\' !@#$%^&*()_+|");
  29.     DrawTextW((double)15., (double)200., 1, "[]{}:\";,.<>/?");
  30.  
  31.     DrawTextW((double)15., (double)300., 5, "\0331\0332\0333\0334\0335\0336\0337\0338");
  32.  
  33.     DrawTextW((double)15., (double)450., 4, "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
  34.     DrawTextW((double)15., (double)600., 4, "abcdefghijklmnopqrstuvwxyz");
  35.     DrawTextW((double)15., (double)750., 3, "1234567890-=\' !@#$%^&*()_+|");
  36.     DrawTextW((double)15., (double)900., 4, "[]{}:\";,.<>/?");
  37.  
  38.     inkey();
  39.  
  40.     LeaveGraphic();
  41. }
  42.  
  43.